P- code - vertaling naar arabisch
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

P- code - vertaling naar arabisch

PROGRAMMING VIRTUAL MACHINE
Microsoft P-Code; P-Code machine; Pseudo-code machine; Portable code machine; Packed code (Microsoft P-Code); Pseudo code (Microsoft P-Code); UCSD p-code

P- code      
شبة كود.
bytecode         
FORM OF INSTRUCTION SET DESIGNED TO BE RUN BY A SOFTWARE INTERPRETER
Byte code; P-Code; P-Codes; Intermediate code; Byte-code; Bitcode; Byte Code; Bytecodes; Portable code; P-code; Byte-compile; Byte-compiler; Byte-code compiler
تشفير ثنائى ، كود بايت ، تشفير بايتى
P         
  • Latin P
  • 20px
  • 20px
  • Ancient Greek Pi
  • Early Greek Pi
  • Late [[Renaissance]] or early [[Baroque]] design of a P, from 1627
  • 25px
  • Phoenician Pe
  • 35px
  • Proto-sinaitic P'it
  • 20px
LETTER OF THE LATIN ALPHABET
P; The letter p; P sharp; P♯; ꟼ; P (letter); ASCII 80; ASCII 112; U+0050; U+0070; Ꝕ; Ꝓ; Letter P
‎ رمز:فو,pرمز بارا,رمز البيكو:10 قوة -12‎

Definitie

byte-code
<file format, software> A binary file containing an executable program, consisting of a sequence of (op code, data) pairs. Byte-code op codes are most often fixed size binary patterns, but can be variable size. The data portion consists of zero or more bits whose format typically depends on the op code. A byte-code program is interpreted by a {byte-code interpreter}. The advantage of this technique compared with outputing machine code for some particular processor is that the same byte-code can be executed on any processor on which the byte-code interpreter runs. The byte-code may be compiled to machine code ("native code") for speed of execution but this usually requires significantly greater effort for each new taraget architecture than simply porting the interpreter. For example, Java is compiled to byte-code which runs on the Java Virtual Machine. (2006-05-29)

Wikipedia

P-code machine

In computer programming, a p-code machine (portable code machine) is a virtual machine designed to execute p-code (the assembly language or machine code of a hypothetical central processing unit (CPU)). This term is applied both generically to all such machines (such as the Java virtual machine (JVM) and MATLAB precompiled code), and to specific implementations, the most famous being the p-Machine of the Pascal-P system, particularly the UCSD Pascal implementation, among whose developers, the p in p-code was construed to mean pseudo more often than portable, thus pseudo-code meaning instructions for a pseudo-machine.

Although the concept was first implemented circa 1966—as O-code for the Basic Combined Programming Language (BCPL) and P code for the language Euler—the term p-code first appeared in the early 1970s. Two early compilers generating p-code were the Pascal-P compiler in 1973, by Kesav V. Nori, Urs Ammann, Kathleen Jensen, Hans-Heinrich Nägeli, and Christian Jacobi, and the Pascal-S compiler in 1975, by Niklaus Wirth.

Programs that have been translated to p-code can either be interpreted by a software program that emulates the behavior of the hypothetical CPU, or translated into the machine code of the CPU on which the program is to run and then executed. If there is sufficient commercial interest, a hardware implementation of the CPU specification may be built (e.g., the Pascal MicroEngine or a version of a Java processor).